1 /*
2 Java Regular Expressions Plugin API
3
4 Copyright (C) 2002 Jose San Leandro Armend?riz
5 jsanleandro@yahoo.es
6 chousz@yahoo.com
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
22 Thanks to ACM S.L. for distributing this library under the LGPL license.
23 Contact info: jsr000@terra.es
24 Postal Address: c/Playa de Lagoa, 1
25 Urb. Valdecaba?as
26 Boadilla del monte
27 28660 Madrid
28 Spain
29
30 This library uses some external APIs. So far I haven't released such
31 APIs as projects themselves, but you should be able
32 to download them from the web page where you got this source code.
33
34 ******************************************************************************
35 *
36 * Filename: $RCSfile: MalformedPatternExceptionOROAdapter.java,v $
37 *
38 * Author: Jose San Leandro Armend?riz
39 *
40 * Description: Adapts jakarta ORO malformed pattern exceptions to follow this
41 * API.
42 *
43 * Last modified by: $Author: dev $ at $Date: 2002/09/27 08:27:15 $
44 *
45 * File version: $Revision: 1.5 $
46 *
47 * Project version: $Name: $
48 * ("Name" means no concrete version has been checked out)
49 *
50 * $Id: MalformedPatternExceptionOROAdapter.java,v 1.5 2002/09/27 08:27:15 dev Exp $
51 *
52 */
53 package org.acmsl.regexpplugin.jakartaoro;
54
55 /*
56 * Importing some ACM classes.
57 */
58 import org.acmsl.version.Version;
59 import org.acmsl.version.VersionFactory;
60
61 /***
62 * Adapts jakarta ORO malformed pattern exceptions to follow this API.
63 * @author <a href="mailto:jsanleandro@yahoo.es"
64 >Jose San Leandro Armend?riz</a>
65 * @version $Revision: 1.5 $
66 */
67 public class MalformedPatternExceptionOROAdapter
68 extends org.acmsl.regexpplugin.MalformedPatternException
69 {
70 /***
71 * Private reference to the actual exception.
72 */
73 private org.apache.oro.text.regex.MalformedPatternException m__Adaptee;
74
75 /***
76 * Constructs an adapter for given ORO exception.
77 * @param exception concrete exception instance to adapt.
78 */
79 public MalformedPatternExceptionOROAdapter(
80 org.apache.oro.text.regex.MalformedPatternException exception)
81 {
82 super(exception.getMessage());
83
84 setAdaptee(exception);
85 }
86
87 /***
88 * Sets the adaptee.
89 * @param adaptee the exception to adapt.
90 */
91 protected void setAdaptee(
92 org.apache.oro.text.regex.MalformedPatternException adaptee)
93 {
94 m__Adaptee = adaptee;
95 }
96
97 /***
98 * Concrete version object updated everytime it's checked-in in a CVS
99 * repository.
100 */
101 public static final Version VERSION =
102 VersionFactory.createVersion("$Revision: 1.5 $");
103
104 /***
105 * Retrieves the current version of this object.
106 * @return the version object with such information.
107 */
108 public Version getVersion()
109 {
110 return VERSION;
111 }
112
113 /***
114 * Retrieves the current version of this class.
115 * @return the object with class version information.
116 */
117 public static Version getClassVersion()
118 {
119 return VERSION;
120 }
121 }
This page was automatically generated by Maven